home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / Software / Freeware / Programare / highlight / highlight-W32GUI-2.2-10b-Setup.exe / {app} / src / datadir.h < prev    next >
C/C++ Source or Header  |  2004-08-17  |  1KB  |  44 lines

  1. /***************************************************************************
  2.                           datadir.h  -  description
  3.                              -------------------
  4.     begin                : Sam MΣr 1 2003
  5.     copyright            : (C) 2003 by AndrΘ Simon
  6.     email                : saalen@gmx.de
  7.  ***************************************************************************/
  8.  
  9. /***************************************************************************
  10.  *                                                                         *
  11.  *   This program is free software; you can redistribute it and/or modify  *
  12.  *   it under the terms of the GNU General Public License as published by  *
  13.  *   the Free Software Foundation; either version 2 of the License, or     *
  14.  *   (at your option) any later version.                                   *
  15.  *                                                                         *
  16.  ***************************************************************************/
  17.  
  18. #ifndef __datadir_H__
  19. #define __datadir_H__
  20.  
  21. #include <string>
  22.  
  23. #ifndef WX_PRECOMP
  24.   #include <wx/wx.h>
  25. #endif
  26.  
  27. using namespace std;
  28.  
  29.  class DataDir {
  30.   string datadir;
  31.  public:
  32.    DataDir();
  33.   // void searchDataDir();
  34.    const string & getDir();
  35.    const string  getThemeDir();
  36.    const string  getLangDefDir();
  37.    const string  getI18nDir();
  38.    const string  getExtDir();
  39.    const string  getIndentSchemesDir();
  40. };
  41.  
  42. #endif
  43.  
  44.